home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / include / lib / requestfh.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  606b  |  33 lines

  1.  
  2. /*
  3.  * $VER: lib/requestfh.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef LIB_REQUESTFH_H
  9. #define LIB_REQUESTFH_H
  10.  
  11. #ifndef DOS_DOS_H
  12. #include <dos/dos.h>
  13. #endif
  14.  
  15. int RequestFH(BPTR, struct Message *, long);
  16.  
  17. #define ACTION_REQUEST    5000
  18.  
  19. #define FREQ_NONE    0
  20. #define FREQ_RPEND    1
  21. #define FREQ_WAVAIL    2
  22. #define FREQ_ABORT    3
  23. #define FREQ_SCHANGE    4   /*    async open  */
  24. #define FREQ_ROUTEREQ    5   /*    route request 'R' dummy channel */
  25. #define FREQ_NBIOR1    0x10000
  26. #define FREQ_NBIOR0    0x20000
  27. #define FREQ_NBIOW1    0x40000
  28. #define FREQ_NBIOW0    0x80000
  29.  
  30. #endif
  31.  
  32.  
  33.